home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / TGCBOR20.ARJ / INTROPAK.COM / HELLO.C < prev    next >
C/C++ Source or Header  |  1991-04-05  |  243b  |  15 lines

  1. #include "teglsys.h"
  2.  
  3. void main(void)
  4.   {
  5.     easytegl();
  6.     easyout();
  7.  
  8.     pushimage(100,100,200,130);
  9.     shadowbox(100,100,200,130);
  10.     setcolor(BLACK);
  11.     outtegltextxy(105,105,"Hello World!");
  12.     teglsupervisor();
  13.   }
  14.  
  15.